Gets a client view of entities of a given type.

Namespace:  C1.Data.Entities
Assembly:  C1.Data.Entity (in C1.Data.Entity.dll)

Syntax

C#
public ClientView<T> GetItems<T>()
Visual Basic
Public Function GetItems(Of T) As ClientView(Of T)

Type Parameters

T
The type of entities to load.

Return Value

A client view of entities of the specified type.

Remarks

Entities are loaded using the entity set of the matching entity type from the default entity container.

See Also